home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / tcp_ip / ka9q / kit_src / scrn00.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-03  |  825 b   |  23 lines

  1. /*    (C) Copyright 1991 Dave Fritsche (wb8zxu), All Rights Reserved.
  2.  * 
  3.  *    Redistribution and use in source and binary forms are permitted for
  4.  *    non-commercial use, provided that the above copyright notice and this
  5.  *    paragraph are duplicated in all such forms.  THIS SOFTWARE IS PROVIDED
  6.  *    ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
  7.  *    WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND
  8.  *    FITNESS FOR A PARTICULAR PURPOSE.
  9.  */
  10. #include <stdio.h>
  11. #include "screen.h"
  12.  
  13. int scrn00()
  14. {
  15.     clrscr();
  16.     box(1, 1, 80, 24, 2);
  17.     puttxt(60, 1, 0, 0, TITLE);
  18.     addlin(1, 21, 80, 2);
  19.     puttxt(22, 11, 0, 0, "KA9Q (NOS) TCP/IP Software Installation");
  20.     puttxt(23, 22, 0, 0, "Copyright 1991 Dave Fritsche (wb8zxu)");
  21.     puttxt(25, 23, 0, 0, "Non-profit redistribution allowed");
  22. }
  23.